home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1989-08-26 | 602 b | 20 lines | [TEXT/MPS ] |
- (******************************************************)
- (* *)
- (* file: DragonModule.d *)
- (* *)
- (* Implementation of Dragon method from *)
- (* Goldberg and Robson, *)
- (* Smalltalk-80: The Language and Its *)
- (* Implementation, pp. 372-3. *)
- (* *)
- (* Written in SemperSoft Modula-2 v.1.1.2 *)
- (* *)
- (* Allen Stenger August 1989 *)
- (* *)
- (******************************************************)
-
- DEFINITION MODULE DragonModule;
-
- PROCEDURE Dragon( order : INTEGER );
-
- END DragonModule.